home *** CD-ROM | disk | FTP | other *** search
/ Sprite 1984 - 1993 / Sprite 1984 - 1993.iso / src / cmds / oldwish / testit_c < prev    next >
Encoding:
Text File  |  1989-07-14  |  246 b   |  21 lines

  1. #include <stdio.h>
  2.  
  3. char    startUp[1024];
  4.  
  5.  
  6. main(argc, argv)
  7. int    argc;
  8. char    *argv[];
  9. {
  10.     int    status;
  11.  
  12.     status = Whence(startUp, "test");
  13.     fprintf(stderr, "%s\n", startUp);
  14.     if (status != NULL) {
  15.     exit(0);
  16.     } else {
  17.     exit(1);
  18.     }
  19. }
  20.  
  21.